home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / winmx_detect2.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  49 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. # there is already a nice WinMX check by Nessus...however, it relies on registry read access...this check
  6. # works even without registry access...the anomaly is that when you connect to a WinMX client on port 6699
  7. # immediatly after the handshake, the client send a PSH packet with a single byte of data set to "1"
  8.  
  9. if(description)
  10. {
  11.  script_id(11847);
  12.  script_version("$Revision: 1.4 $");
  13. #  script_cve_id("CVE-MAP-NOMATCH");
  14.  name["english"] = "WinMX P2P check";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote server seems to be a WinMX Peer-to-Peer client,
  19. which may not be suitable for a business environment. 
  20.  
  21. Solution : Uninstall this software
  22. Risk factor : Low";
  23.  
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Determines if the remote system is running WinMX";
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Security");
  34.  family["english"] = "Peer-To-Peer File Sharing";
  35.  script_family(english:family["english"]);
  36.  
  37.  exit(0);
  38. }
  39.  
  40.  
  41.  
  42.  
  43. port = 6699;
  44. if(!get_port_state(port))exit(0);
  45. soc = open_sock_tcp(port);
  46. r = recv(socket:soc, min:1, length:256);
  47. if ( strlen(r) == 1 && r == "1" ) security_warning(port);
  48. exit(0);
  49.